Crate portus

source ·
Expand description

Welcome to CCP.

This crate, portus, implements a CCP. This includes:

  1. An interface definition for external types wishing to implement congestion control algorithms (CongAlg).
  2. A compiler for datapath programs.
  3. An IPC and serialization layer for communicating with libccp-compliant datapaths.

The entry points into portus are run and spawn, which start the CCP algorithm runtime. There is also the convenience macro start.

The runtime listens for datapath messages and dispatches calls to the appropriate congestion control methods.

Example

The following congestion control algorithm sets the congestion window to 42, and prints the minimum RTT observed over 42 millisecond intervals.

extern crate fnv;
extern crate portus;
use fnv::FnvHashMap as HashMap;
use portus::{CongAlg, Flow, Config, Datapath, DatapathInfo, DatapathTrait, Report};
use portus::ipc::Ipc;
use portus::lang::Scope;
use portus::lang::Bin;

#[derive(Clone, Default)]
struct MyCongestionControlAlgorithm(Scope);

impl<I: Ipc> CongAlg<I> for MyCongestionControlAlgorithm {
    type Flow = Self;

    fn name() -> &'static str {
        "My congestion control algorithm"
    }
    fn datapath_programs(&self) -> HashMap<&'static str, String> {
        let mut h = HashMap::default();
        h.insert(
            "MyProgram", "
                (def (Report
                    (volatile minrtt +infinity)
                ))
                (when true
                    (:= Report.minrtt (min Report.minrtt Flow.rtt_sample_us))
                )
                (when (> Micros 42000)
                    (report)
                    (reset)
                )
            ".to_owned(),
        );
        h
    }
    fn new_flow(&self, mut control: Datapath<I>, info: DatapathInfo) -> Self::Flow {
        let sc = control.set_program("MyProgram", None).unwrap();
        MyCongestionControlAlgorithm(sc)
    }
}
impl Flow for MyCongestionControlAlgorithm {
    fn on_report(&mut self, sock_id: u32, m: Report) {
        println!("minrtt: {:?}", m.get_field("Report.minrtt", &self.0).unwrap());
    }
}

Modules

Helper methods for making algorithm binaries.
A library wrapping various IPC mechanisms with a datagram-oriented messaging layer. This is how CCP communicates with the datapath.
The datapath program compiler.
Serialization library for communicating with libccp in the datapath.
Helper type for writing unit tests.

Macros

Generates a test which serializes and deserializes a message and verifies the message is unchanged.
Convenience macro for starting the portus runtime in the common single-algorithm case. The 3-argument form will use blocking IPC sockets. Arguments are:

Structs

A handle to manage running instances of the CCP execution loop.
Configuration parameters for the portus runtime. Defines a slog::Logger to use for (optional) logging
A collection of methods to interact with the datapath.
The set of information passed by the datapath to CCP when a connection starts. It includes a unique 5-tuple (CCP socket id + source and destination IP and port), the initial congestion window (init_cwnd), and flow MSS.
CCP custom error type.
Contains the values of the pre-defined Report struct from the fold function. Use get_field to query its values using the names defined in the fold function.

Traits

Implement this trait and portus::Flow to define a CCP congestion control algorithm. Instances of this type implement functionality which applies to a given algorithm as a whole.
A collection of methods to interact with the datapath.
Implement this trait and portus::CongAlg to define a CCP congestion control algorithm. Instances of this type implement functionality specific to an individual flow.

Functions

Main execution loop of CCP for the static pipeline use case. The run method blocks ‘forever’; it only returns in two cases:
Spawn a thread which will perform the CCP execution loop. Returns a CCPHandle, which the caller can use to cause the execution loop to stop. The run method blocks ‘forever’; it only returns in three cases:

Type Definitions

CCP custom Result type, using Error as the Err type.